.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.main {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 500px;
    text-align: center;
    line-height: 1.5;
}

.main img{
    max-width: 100%; 
    max-height: 200px; 
    display: block; 
    margin: auto; 
}

h1 {
    color: white;
}

label {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #3f1515;
    font-weight: bold;
}

input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.loginButton {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: black;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.1s ease-in-out;
}

.loginButton:hover {
    background-color: red;
    color: #fff;
}

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
.main {
    width: 60%;
}

.main img{
    max-height: 100px; 
}
}